home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-20 / pmpsrc11.zip / PORTS.H < prev    next >
Text File  |  1991-07-30  |  984b  |  39 lines

  1. /*
  2.     ports.h  -- Port and bit definitions
  3.  
  4.   Poor Man's Packet (PMP)
  5.   Copyright (c) 1991 by Andrew C. Payne    All Rights Reserved.
  6.  
  7.   Permission to use, copy, modify, and distribute this software and its
  8.   documentation without fee for NON-COMMERCIAL AMATEUR RADIO USE ONLY is hereby
  9.   granted, provided that the above copyright notice appear in all copies.
  10.   The author makes no representations about the suitability of this software
  11.   for any purpose.  It is provided "as is" without express or implied warranty.
  12.  
  13.     Assumes 'pmp.h' previously included.
  14.  
  15.     August, 1989
  16.     Andrew C. Payne
  17. */
  18.  
  19. /* ----- Output Bits ----- */
  20.  
  21. /* Transmit data */
  22. EXTERN word    TXPort;
  23. EXTERN byte    TXBit;
  24.  
  25. /* TX control (Push To Talk) */
  26. EXTERN word    PTTPort;
  27. EXTERN byte    PTTBit;
  28. EXTERN int    PTTLevel;
  29.  
  30. /* ----- Input Bits ----- */
  31.  
  32. /* Receive data */
  33. EXTERN word    RXPort;
  34. EXTERN byte    RXBit;
  35.  
  36. /* Carrier Detect */
  37. EXTERN word    CDPort;
  38. EXTERN byte    CDBit;
  39. EXTERN int    CDLevel;